home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Gamer Resource Kit / Hardcore Gamer Resource Kit - Disc 2.iso / Pc / K_O / LOTR103C.ZIP / LORDS.LZH / TECHTIPS.TXT < prev    next >
Text File  |  1994-10-12  |  20KB  |  455 lines

  1. TECHNICAL TIPS
  2.  
  3. We have found that many of the common problems our customers 
  4. experience with their machines have simple answers.  If you 
  5. are having one of the problems listed below, the solution 
  6. provided should be tried first before you search any further 
  7. for answers. 
  8.  
  9.  
  10. 1. WHY DOES IT SAY "ABNORMAL PROGRAM TERMINATION" WHEN I 
  11. TYPE IN THE GAME COMMAND?
  12. The "ABNORMAL PROGRAM TERMINATION" error usually indicates 
  13. that a program cannot run because the system has not been 
  14. configured to free up enough conventional memory. Under DOS, 
  15. conventional memory is limited to 640 Kilobytes (K) total 
  16. (regardless of how much RAM is installed in the machine) and 
  17. is reduced by DOS and various Terminate and Stay Resident 
  18. (TSR) programs.  Most of our games will comfortably run with 
  19. 585K or better of free conventional memory, though some 
  20. configurations might need more.
  21.  
  22. To find out which version of DOS you are using, type 
  23. "VER<enter>" at any DOS prompt;  this will return a message 
  24. that says "MS-DOS version n.nn" where "n.nn" refers to some 
  25. number, "6.20" for example.
  26.  
  27. To find out how much conventional memory is free:
  28. Type "CHKDSK<enter>" and find the value of "BYTES FREE".     
  29. If  the free memory value is less than 585k, the system 
  30. configuration needs to be changed to increase the free 
  31. conventional memory.  
  32.  
  33. Three methods to increase free conventional memory:
  34. a.  For DOS 6.0 or higher, run MEMMAKER (If the drive is 
  35. compressed in some way, make sure the device driver is 
  36. loaded in the CONFIG.SYS file so that it can be properly 
  37. placed in upper memory).  If this doesn't free up enough 
  38. memory, create a boot disk, as described below. 
  39. b.  Alter your CONFIG.SYS and AUTOEXEC.BAT files to load 
  40. DOS, device drivers and other TSRs into upper memory at boot 
  41. up (consult your DOS manual for specifics on how this is 
  42. done).
  43. c.  Create a Game/Boot Disk.  If you don't know how to do 
  44. this, consult the following Tech section on making a 
  45. Game/Boot Disk.
  46.  
  47.  
  48. 2. HOW DO I MAKE A GAME/BOOT DISK? 
  49. These instructions will work best with an 80386 or better 
  50. computer with two megabytes or more of total system memory 
  51. running DOS version 5.0 or better.  If the CPU, memory or 
  52. DOS version recommendations are not met, the instructions 
  53. below should still work, but will most likely result in 
  54. error messages that can, for the purposes of a game/boot 
  55. disk, be ignored.
  56.  
  57. Creating a boot disk from DOS:
  58. Format a floppy disk in drive A:  by placing a blank disk 
  59. into A: and typing "FORMAT A: /S"; follow the instructions 
  60. onscreen;  if an error message is encountered, be sure the 
  61. disk is the correct density for the drive (high density is 
  62. necessary for current machines).  If further errors are 
  63. encountered, try another disk.  Leave the formatted floppy 
  64. in drive A:.
  65.  
  66. At the DOS prompt, type "C:" then press the <enter> key, 
  67. then type "CD \" and again hit the <enter> key (assume when 
  68. the following text says "<enter>" that you should hit this 
  69. key).  The prompt should now read: "C:\>".  
  70.  
  71. Start your text editor by typing "EDIT C:\CONFIG.SYS<enter>" 
  72. (the example used in this case is the MS-DOS EDIT utility 
  73. that comes with MS-DOS 5.0 or later;  the command to run the 
  74. editor and the commands to save and exit may be different 
  75. depending on what program you use, the important thing is to 
  76. open the editor with the file named after the example EDIT 
  77. command).  You should now see the editor screen, which is a 
  78. blue screen that says  "FILE EDIT SEARCH OPTIONS" in the 
  79. upper left corner of the screen.  "CONFIG.SYS" should be 
  80. displayed in the center top of the screen.  
  81.  
  82. Find the line in the file that loads in your CD-ROM device 
  83. driver.  It probably starts with something like: 
  84. "DEVICEHIGH=C:\CDSTUFF\MYCD.SYS" (this will not be the 
  85. actual name of the path and filename, you need to either 
  86. figure these things out or consult the technician or 
  87. documentation for your CD drive to find the name and syntax 
  88. of this device driver) and may include more text on the 
  89. line.  Copy the whole line down on a piece of paper, 
  90. including any other text that comes after the .SYS filename;  
  91. if possible, print the file out and underline the 
  92. appropriate text.  Exit out of the EDIT utility (you can do 
  93. this by holding down the <alt> key and typing "f", then when 
  94. the file menu drops down, type "x" or, if your mouse is 
  95. working, just click on "File" in the upper left hand corner, 
  96. and then "Exit" in the file menu).
  97.  
  98. Now open your AUTOEXEC.BAT file, by typing "EDIT 
  99. C:\AUTOEXEC.BAT<enter>".  
  100.  
  101. Find the line in the AUTOEXEC.BAT file that contains the 
  102. following letters "MSCDEX";  Again there will probably be 
  103. more information on the line than just the program location 
  104. and name.  Either write it down, letter for letter, or print 
  105. it out.  Exit the editor and return to DOS.
  106.  
  107. Change the current drive to  drive A: by typing "A: 
  108. <enter>".  The prompt should now look like: "A:\>".  Open 
  109. your editor by typing "EDIT A:\CONFIG.SYS".   Type in the 
  110. following file ignoring the stuff between parentheses  ("(" 
  111. and ")"):
  112.  
  113. DEVICE=C:\DOS\HIMEM.SYS
  114. DEVICE=C:\DOS\EMM386.EXE NOEMS
  115. DOS=HIGH
  116. DOS=UMB
  117. DEVICEHIGH=C:\CDSTUFF\MYCD.SYS /D:drivername
  118.   (Replace this line with whatever the CD-ROM driver line
  119.   is in your C:\CONFIG.SYS file and remember to include
  120.   all the information that comes AFTER the SYS filename
  121.   on the line.  If any other information is found between
  122.   the "DEVICEHIGH" and the "=", it should be ignored;  you
  123.   may not encounter this, so don't worry if you don't.)
  124.  
  125. If the hard drive is configured with auto-compression 
  126. software, such as Stacker or DoubleSpace, refer to that 
  127. package's manual for instructions on loading the driver into 
  128. upper memory and include the appropriate line before the CD 
  129. driver in this file (Note: device drivers cannot be loaded 
  130. into upper memory unless the CPU is a 386 or better).  
  131.  
  132. Once the file is finished, save it and exit the editor.  (To 
  133. save a file in the MS-DOS editor, either use the mouse, if 
  134. working, to choose the "File" menu, then "Save", or hold 
  135. down the <alt> key, type "f" to drop the menu, then "s" to 
  136. choose "Save").
  137.  
  138. Start up the editor again from the A: drive by typing: "EDIT 
  139. A:\AUTOEXEC.BAT".  Type in the following file:
  140.  
  141. PROMPT $P$G
  142. PATH C:\DOS
  143. LH C:\DOS\MSCDEX.EXE  /D:drivername
  144.   (you must remember to change the driver name according to
  145.   the one you wrote down from your C:AUTOEXEC.BAT file, and
  146.   include all the other letters and numbers that come after
  147.   it on this line)
  148. LH C:\DOS\SMARTDRV
  149. LH C:\MOUSE\MOUSE.COM
  150.   (alter this line depending on the path and name of your
  151.   mouse driver *.COM file.  If you have DOS 5.0 or higher,
  152.   you can type "LOADHIGH" and a space before this line.  
  153.   If there is already an "LH" (or "LOADHIGH") and slashes,
  154.   numbers and letters between the "LH"  and the "C:\..." 
  155.   you should ignore the slashes, numbers and letters, 
  156.   replacing them with only a space.  Refer to the
  157.   following section on "Why doesn't my mouse work?" for
  158.   more information.)
  159. C:
  160.  
  161. Save the file and exit the editor.
  162.  
  163. To boot from this floppy disk, leave it in drive A: and 
  164. restart the computer.  Change to the directory that holds 
  165. the game, then type in the command appropriate to run the 
  166. program (then have fun).
  167.  
  168.  
  169. 3. WHY DOESN'T MY MOUSE WORK?
  170. If your mouse does not work at all:
  171. -Is the mouse installed for DOS?  Windows uses its own 
  172. drivers, and therefore works without a properly installed 
  173. DOS mouse driver, so you cannot assume that because a mouse 
  174. works with a Windows system that a mouse driver for DOS 
  175. programs is currently installed.
  176.  
  177. To find out whether or not such a driver is installed:
  178. -enter a DOS application that supports a mouse, such as the 
  179. EDIT utility (DOS 5.0 or later) or a DOS word processor (or 
  180. anything else, besides Windows, that loads from the DOS 
  181. prompt and uses a mouse).  If the mouse does not respond at 
  182. all in such a program, then the DOS driver is not properly 
  183. loaded.  Check the disk or manual that came with your mouse 
  184. for instructions on how to install it.
  185.  
  186. -Do you have enough conventional memory free?  Some programs 
  187. incrementally sacrifice sound or mouse functionality when 
  188. sufficient memory resources are not available.  Refer to 
  189. your DOS manual for instructions on how to increase free 
  190. conventional memory.
  191.  
  192. If the mouse works sporadically (jumping around, not 
  193. clicking properly, etc.):
  194. -You may not have a 100% Microsoft compatible mouse driver 
  195. (This has nothing to do with hardware, only software).  
  196. Check your hard disk for a file called MOUSE.COM, as some 
  197. upgrade versions of DOS include this Microsoft mouse driver 
  198. (type "dir mouse.com /s<enter>" at the C:\ root directory 
  199. prompt).  If not already on your system, such a driver can 
  200. be obtained from either the vendor or manufacturer of your 
  201. computer.
  202.  
  203.  
  204. 4. HOW DO I SET UP MY SOUND CARD?
  205. Setting sound card parameters:
  206. To use a sound card with an Impressions program, it is 
  207. sometimes necessary to set a number of parameters using the 
  208. setup utility located in the game directory.  
  209.  
  210. The significant values are the I/O Address, the Interrupt 
  211. Request Channel (IRQ) and the Direct Memory Access (DMA) 
  212. values of the relevant sound card.  These can sometimes be 
  213. found on a line in the AUTOEXEC.BAT file, which is found in 
  214. the root directory of the main hard disk (C:\);  if, for 
  215. example, you own a Sound Blaster or compatible the line 
  216. might begin with something like: "SET BLASTER"  (if the card 
  217. is something other than a Sound Blaster, it might be 
  218. something else, "SET PROAUDIO" for example) followed by a 
  219. sequence of letter/number combinations including: Annn, In, 
  220. Dn (where n represents a numerical digit);  Annn is the 
  221. address, In is the IRQ and Dn is the DMA value.
  222.     
  223. The setup program allows for specification of the type of 
  224. sound card as well as the Address and IRQ values of the 
  225. installed card (DMA is usually assumed to be 1 which usually 
  226. cannot be changed in the setup utility);  If any of these 
  227. are incorrectly set, sound will not work with the program.
  228.     
  229. If no SET BLASTER, or similar, line is found in the 
  230. AUTOEXEC.BAT file, consult either the sound card manual or 
  231. the technician who installed the device to obtain the 
  232. Address, IRQ and DMA values.
  233.  
  234. Sound card emulation:
  235. If you are using a card that is not listed as an option in 
  236. the setup program, it probably emulates something else.  It 
  237. is usually a good idea to use the oldest version of whatever 
  238. card your system is emulating (ie. choose SoundBlaster over 
  239. SoundBlaster pro), as the older cards are usually better 
  240. documented so that emulation of those works better.
  241.  
  242.  
  243. 5. MEMORY MANAGERS
  244. Third party memory managers, such as QEMM, 386Max, etc. 
  245. sometimes cause problems.  They make certain assumptions 
  246. about memory use which are not true of many high performance 
  247. graphics intensive programs.  If you are using one of these 
  248. memory managers and encounter graphics distortions, try 
  249. temporarily disabling third party memory managers.  
  250.  
  251. To temporarily disable third party memory managers:
  252. Boot up from a system disk whose CONFIG.SYS and AUTOEXEC.BAT 
  253. files load only the memory management utilities included 
  254. with MS-DOS (HIMEM.SYS and EMM386.EXE).  To free 
  255. conventional memory use the DEVICEHIGH and LH instructions, 
  256. with the DOS memory managers, to load TSRs and device 
  257. drivers into upper memory.
  258.  
  259. If you don't know how to create a system disk, consult 
  260. either your DOS manual or the previous Tech section on 
  261. making a Game/Boot Disk.
  262.  
  263.  
  264. 6. WHY IS MY CD-ROM GAME RUNNING SO SLOWLY?
  265. CD-ROM drives are much slower than hard drives.  When 
  266. running a program from a CD-ROM, if you don't run a disk 
  267. caching utility, the program will probably run slowly.  A 
  268. disk cache program sits between the physical disk drive and 
  269. the program, reserving an area of memory that stores the 
  270. information most recently read from, or sometimes written 
  271. to, the drive.  This speeds the system by keeping data, that 
  272. a program might need to look at more than once, in memory 
  273. instead of on the disk;  for a computer, looking at memory 
  274. is much faster than looking at the disk.
  275.  
  276. Some CD drives come packaged with caching software, but the 
  277. most common such utility is MS-DOS Smartdrive 
  278. (C:\DOS\SMARTDRV.EXE), which also caches other disk drives.  
  279. All versions of Smartdrive that come with or after MS-DOS 
  280. version 6.2 (file date 9/30/93) can cache CD-ROM disks.
  281.  
  282. MSCDEX (C:\DOS\MSCDEX.EXE) is a program that comes with DOS 
  283. and is packaged with some CD-interface or drive hardware.  
  284. Along with a properly loaded CD-ROM device driver, it lets 
  285. DOS see the CD as a disk drive;  without MSCDEX, you cannot 
  286. access a CD-ROM drive through DOS or Windows.  
  287.  
  288. To make sure Smartdrive and MSCDEX are set up properly, 
  289. check your AUTOEXEC.BAT file.  So long as your CD drive has 
  290. been properly installed, there should be a line that loads 
  291. in MSCDEX and possibly a line that loads in Smartdrive, or 
  292. some other cache program that might have come with your 
  293. drive.  Make sure the line that loads in the caching program 
  294. comes after the line that loads in MSCDEX;  if you don't do 
  295. this, the caching software will not work. 
  296.  
  297. The line in the AUTOEXEC.BAT file that loads MSCDEX looks 
  298. something like: "C:\DOS\MSCDEX...", and usually includes 
  299. other things after the "MSCDEX" such as the DOS name of the 
  300. CD device and a number of other things;  assume all these 
  301. things after the "MSCDEX" are necessary if you are going to 
  302. cut and paste between configuration files.  The line that 
  303. loads in Smartdrive should look something like: 
  304. "C:\DOS\SMARTDRV.EXE".  If using a version of DOS later than 
  305. 5.0, you should add "LOADHIGH" and a space at the beginning 
  306. of the line
  307.  
  308. If you have changed or moved lines in your AUTOEXEC.BAT or 
  309. CONFIG.SYS files you should rerun MEMMAKER, and be sure to 
  310. specify no EMS when asked about it.  If running DoubleSpace 
  311. or Stacker with DOS 6.0 or higher, always be sure that a 
  312. DEVICE or DEVICEHIGH line loads it in the CONFIG.SYS file or 
  313. MEMMAKER will ignore it and it will certainly load low, 
  314. wasting valuable conventional memory. 
  315.  
  316.  
  317. 7. IÆVE FOLLOWED THE INSTRUCTIONS IN STEP #6, BUT MY VIDEO 
  318. STILL RUNS SLOWLY.  WHAT CAN I DO?
  319. You can boost the speed of the animations by copying them
  320. over to your hard drive; however, this will require an
  321. additional 34 megabytes of storage space on your hard drive.
  322.  
  323. To copy the animations, access the drive from which you 
  324. installed this game, and type COPYVIDS <ENTER>.
  325.  
  326.  
  327. STILL HAVING PROBLEMS? BEFORE YOU CALL...
  328. In order to allow us to help you more effectively, please 
  329. try to follow the suggestions below before you call for 
  330. help.  This will assist us in finding the answer to your 
  331. problem as quickly as possible so that you can begin playing 
  332. and enjoying your new game.
  333.  
  334.  
  335. 1. READ AT LEAST THE FIRST FEW CHAPTERS OF YOUR DOS MANUAL.  
  336. The more you know about the operating system your machine is 
  337. running the easier it will be for any technical support to 
  338. help you solve any problems.  You should at least be 
  339. familiar with how DOS commands work, what disk files and 
  340. directories are and what utilities are available on your 
  341. machine for editing text files.
  342.  
  343.  
  344. 2. FIND OUT AS MUCH AS POSSIBLE ABOUT HOW YOUR MACHINE IS 
  345. CONFIGURED.  What version of what brand operating system is 
  346. running on the machine?  (At the command prompt, type "VER" 
  347. and hit enter to find out what version of DOS is running)  
  348. What kind of chip is running your machine? ('486? '386? 
  349. '286? 8086?)  How much memory is in the system?  How much 
  350. conventional memory is free?  (Free conventional memory 
  351. should be above 590k or so)  How much hard disk space is 
  352. free?  What kind of video card is in your machine?  (SVGA? 
  353. VGA? EGA? Brand name?)  What kind of sound card, if any, is 
  354. in your system?  Do you have a CD-ROM drive?  Are you using 
  355. Stacker, Doublespace or some other kind of disk compression?  
  356. Are you using QEMM or some other third party memory manager?  
  357. If Windows 3.1 is installed on the machine, you can run 
  358. Microsoft Diagnostics to find out some of these things, if 
  359. you do not already know about them (type "MSD", then hit 
  360. <enter> at the command prompt).  If necessary, call whomever 
  361. it was that originally configured your system to answer 
  362. these questions.  It's also a good idea to print out your 
  363. CONFIG.SYS and AUTOEXEC.BAT files (usually in the root 
  364. directory of C:) and keep the printouts handy.
  365.  
  366.  
  367. 3. SET UP THE COMPUTER NEAR THE PHONE WITH THE PROGRAM 
  368. INSTALLED ON THE HARD DRIVE.  It is very difficult for 
  369. technical support to troubleshoot a computer problem over 
  370. the phone without having access to the machine in question 
  371. while it is running.  If this is not an option, list every 
  372. detail about the occurance of the problem, including all 
  373. pertinent system configuration information (such as that 
  374. described in the previous paragraph), and keep this list 
  375. handy when calling tech support.
  376.  
  377.  
  378. 4. DEFRAG YOUR HARD DISK.  Non-contiguous files on a hard 
  379. disk can sometimes cause strange and mysterious things to 
  380. occur.  While in the game directory, type "CHKDSK *.*", then 
  381. hit <enter> at the DOS prompt to find out if all the game 
  382. files are contiguous or not.  A hard disk can be 
  383. defragmented, or defragged, by using a disk utility program 
  384. such as SPEEDISK, which is packaged with Norton Utilities, 
  385. or DEFRAG, a program included with MS-DOS version 6.0 or 
  386. above.  This reorders disk space, making stored files 
  387. contiguous.  If a hard drive has not been defragged for more 
  388. than a month, and has been used even moderately, it is 
  389. likely that many of the files on the disk have become non-
  390. contiguous. 
  391.  
  392.  
  393. 5. CHECK FOR VIRUSES.  Viruses can mess up even the most 
  394. carefully configured system.  Use a memory-resident virus 
  395. checker (such as VSAFE, a utility that comes with MS-DOS 
  396. version 6.0 and above) whenever you insert new disks into 
  397. your machine, and run an anti-virus utility (such as MSAV, 
  398. another utility that comes with MS-DOS v.6.0 and above) 
  399. before you call.
  400.  
  401.  
  402. TECHNICAL SUPPORT
  403.  
  404. If you have difficulties with this game and cannot find the 
  405. solution in this booklet, please call our Technical Support 
  406. Line at  (617) 225-0848, 9 a.m.-5:30 p.m. EST, Monday 
  407. through Thursday, and 9am-5pm EST on Friday, and a member of 
  408. our support staff will assist you.  We will be best able to 
  409. help you if you are at your computer when you call.  
  410.  
  411. Impressions Software also supports a  BBS system to provide 
  412. the latest product information, software updates, and 
  413. software patches.  If you have a modem, you can reach our 
  414. bulletin board at (617) 225-2042. 
  415.  
  416. Information about Impressions can be found on several of the 
  417. major on-line services.  General information about 
  418. Impressions games can be found in the following places:
  419.  
  420. CompuServe: Type "GO GAMEPUB" and look for the Impressions 
  421. section.
  422.  
  423. Genie: Type "M805;1" and watch Category 9 ("Strategy and War 
  424. Games") for the IMPRESSIONS topic.
  425.  
  426. Prodigy: JUMP to "GAMES BB" and look in the "Strategy/War 
  427. Games" topic.
  428.  
  429.  
  430. Impressions can also be contacted directly through the 
  431. following addresses:
  432.  
  433. CompuServe: 71333,463
  434. Genie: IMPRESSIONS
  435. Prodigy: BCFP34A
  436.  
  437. If you are not a member of any of these services, and are 
  438. interested in obtaining more information, please contact: 
  439.  
  440. CompuServe: Dial 1 (800) 524-3388 and ask for operator #417 
  441. to receive a free introductory membership, $15 usage credit, 
  442. and a month's worth of basic services free. 
  443.  
  444. Genie: Dial 1 (800) 638-9636 for a service representative 
  445. from 8 a.m. to 12 midnight Monday through Friday, and from 
  446. 12 noon to 8 p.m. weekends. 
  447.   or Use your modem between 8 a.m. and 6 p.m. to connect 
  448.   directly to GEnie at 1 (800) 638-8369. 
  449.  
  450. Prodigy: Dial 1 (800) 776-3552 and ask for extension 518. 
  451. Technical Supplement and Tutorial Copyright (c) 1994 
  452. Impressions
  453.  
  454.  
  455.